home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / c_course.zip / DOWHILE.C < prev    next >
Text File  |  1989-12-30  |  256b  |  13 lines

  1. /* This is an example of a do-while loop */
  2.  
  3. main()
  4. {
  5. int i;
  6.  
  7.    i = 0;
  8.    do {
  9.       printf("The value of i is now %d\n",i);
  10.       i = i + 1;
  11.    } while (i < 5);
  12. }
  13.